projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7687966
)
From: Daniel Brockman <daniel@brockman.se> (tiny change)
author
Kim F. Storm
<storm@cua.dk>
Thu, 22 Feb 2007 11:23:11 +0000
(11:23 +0000)
committer
Kim F. Storm
<storm@cua.dk>
Thu, 22 Feb 2007 11:23:11 +0000
(11:23 +0000)
(it_props): Handle invisible property before display property.
src/xdisp.c
patch
|
blob
|
history
diff --git
a/src/xdisp.c
b/src/xdisp.c
index b018735c3c6e760de337c8547514a48970b8a95a..4ff3afd472b3331b285ac9a9ce90373ac2d5ccbd 100644
(file)
--- a/
src/xdisp.c
+++ b/
src/xdisp.c
@@
-762,8
+762,8
@@
static struct props it_props[] =
/* Handle `face' before `display' because some sub-properties of
`display' need to know the face. */
{&Qface, FACE_PROP_IDX, handle_face_prop},
- {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop},
{&Qinvisible, INVISIBLE_PROP_IDX, handle_invisible_prop},
+ {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop},
{&Qcomposition, COMPOSITION_PROP_IDX, handle_composition_prop},
{NULL, 0, NULL}
};